How do you use `@mixin` to create reusable style patterns?
Description : Creating reusable styles with `@mixin` in SASS.
Answer :
`@mixin` is used to create reusable style patterns inSASS by defining blocks ofCSS code that can be included in multiple selectors. For example, define a mixin for a button style:`@mixin button-style { padding: 10px; border: 1px solid; border-radius: 4px; }`. Apply this mixin with`@include button-style;` to different button classes, ensuring consistent styling across your project.